home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / prolog / brklyprl.lha / Emulator / Tests / Passed / test38.pl < prev    next >
Encoding:
Text File  |  1989-04-14  |  148 b   |  7 lines

  1.  
  2. /* Copyright (C) 1988, 1989 Herve' Touati, Aquarius Project, UC Berkeley */
  3.  
  4. main :- a(X).
  5. a(X) :- !, V = [A|X], B =.. V, write(B), write(V), nl.
  6.  
  7.